projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9b67b7
)
(sdb): Handle tags-file-name as nil.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 12 May 1994 02:14:13 +0000
(
02:14
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 12 May 1994 02:14:13 +0000
(
02:14
+0000)
lisp/gud.el
patch
|
blob
|
history
diff --git
a/lisp/gud.el
b/lisp/gud.el
index 594f88a4f2c619bbd7f74b142a8a0ca5bd5b9bdf..421bb15b33784d868ebe8b977aa78c3635032db2 100644
(file)
--- a/
lisp/gud.el
+++ b/
lisp/gud.el
@@
-404,7
+404,9
@@
and source-file directory for your debugger."
nil nil
'(gud-sdb-history . 1))))
(if (and gud-sdb-needs-tags
- (not (and (boundp 'tags-file-name) (file-exists-p tags-file-name))))
+ (not (and (boundp 'tags-file-name)
+ (stringp tags-file-name)
+ (file-exists-p tags-file-name))))
(error "The sdb support requires a valid tags table to work."))
(gud-overload-functions '((gud-massage-args . gud-sdb-massage-args)
(gud-marker-filter . gud-sdb-marker-filter)